home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: insert Paragraph~wraps the current selection with
- <P> ... </P> tags.
- @EndTool:
- @Summary: insert Paragraph~wraps selection with the Paragraph tag
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- var upperCaseHtmlTags = getMapFileValue("Preferences", "Upper Case HTML Tags", true);
- if (upperCaseHtmlTags)
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</P>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<P>");
- }
- else
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</p>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<p>");
- }
- editor.setActive();
- }
- }
-
- !!/Script
-